Dashboard Temp Share Shortlinks Frames API

huxn-webdev - HTMLify profile

files of /huxn-webdev/HTML-CSS-JavaScript-100-Projects/17. Cursor/

app.js /huxn-webdev/HTML-CSS-JavaScript-100-Projects/17. Cursor/app.js
13 Views
0 Comments
const cursor = document.querySelector(".cursor");

document.addEventListener("mousemove", function (event) {
// event.pageX --
index.html /huxn-webdev/HTML-CSS-JavaScript-100-Projects/17. Cursor/index.html
23 Views
0 Comments
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta nam
style.css /huxn-webdev/HTML-CSS-JavaScript-100-Projects/17. Cursor/style.css
15 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display+SC:wght@700&display=swap");

body {
height: 100vh;
ba